Log in Register Dashboard Temp Share Shortlinks Frames API

cody - HTMLify profile

cody's Profile Picture

cody

4270 Files

636029 Views

Latest files of /cody/swapnilsparsh/30DaysOfJavaScript/16 - Countdown Timer

font/ cody/swapnilsparsh/30DaysOfJavaScript/16 - Countdown Timer/font/
1 Items
  • sans.ttf
  • assets/ cody/swapnilsparsh/30DaysOfJavaScript/16 - Countdown Timer/assets/
    1 Items
  • hourglass.png
  • style.css cody/swapnilsparsh/30DaysOfJavaScript/16 - Countdown Timer/style.css
    88 Views
    0 Comments
    *{
    margin: 0;
    padding: 0;
    font-family: "sans";
    }

    @font-face {
    font-family: "sans";
    index.html cody/swapnilsparsh/30DaysOfJavaScript/16 - Countdown Timer/index.html
    317 Views
    0 Comments
    <!DOCTYPE html>
    <html lang="en">
    <head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <link rel="stylesheet" href="style.css">
    <link rel="shortcut icon" href="assets/hourglass.png" type="image/x-icon">
    script.js cody/swapnilsparsh/30DaysOfJavaScript/16 - Countdown Timer/script.js
    151 Views
    0 Comments

    var start = document.getElementById('start');
    var reset = document.getElementById('reset');
    var pause = document.getElementById('pause');

    var h = document.getElementById("hour");
    var m = document.getElementById("minute");
    var s = document.getElementById("sec");